home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
In-To-The-Net
/
In-to-the-net (1996)(Weird Science)(Disc 1 of 2)[Amiga-PC].iso
/
airmail33
/
install.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1996-06-22
|
636b
|
27 lines
/* simple ARexx install script
-- This script will copy the display program to the c: directory for viewing
AirMail screen shots. If you already have newer versions then ignore the
install script
--
*/
address command
say 'Creating directory ENVARC:AirMail'
'makedir ENVARC:AirMail'
say
say 'Creating directory MUI:Images/AirMail'
'makedir MUI:Images/AirMail'
say
say 'Copying Air Mail icons to MUI:Images/AirMail'
say 'See Docs on how to use your own icons.'
'copy libs/#?.iff MUI:Images/AirMail'
say
say 'Copy display v38.9 to C: (y/n)'
pull ans
if ans = 'Y' then
'copy libs/display c:'
endif
say 'Installation Complete.'